home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / WHILE.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  459b  |  26 lines

  1.                                 /* Chapter 3 - Program 1 - WHILE.C */
  2. /* This is an example of a "while" loop */
  3.  
  4. void main()
  5. {
  6. int count;
  7.  
  8.    count = 0;
  9.    while (count < 6) {
  10.       printf("The value of count is %d\n", count);
  11.       count = count + 1;
  12.    }
  13. }
  14.  
  15.  
  16.  
  17. /* Result of execution
  18.  
  19. The value of count is 0
  20. The value of count is 1
  21. The value of count is 2
  22. The value of count is 3
  23. The value of count is 4
  24. The value of count is 5
  25.  
  26. */